.industry-solutions {
    width: 100%;
    padding: 10rem 0 0;
    background: #FFFFFF;
}

.industry-solutions__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.industry-solutions__header {
    text-align: center;
    margin-bottom: 50px;
}

.industry-solutions__title {
    font-size: 2rem;
    font-weight: bold;
    color: #333333;
    letter-spacing: 0.01em;
    margin: 0;
}

.industry-solutions__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
}

.industry-solutions__item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
    text-decoration: none !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
}

.industry-solutions__item:hover {
    transform: translateY(-3px) !important;
}

.industry-solutions__item-image-wrapper {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
}

.industry-solutions__item-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.industry-solutions__item:hover .industry-solutions__item-image {
    transform: scale(1.03) !important;
}

.industry-solutions__item-name {
    font-size: 0.95rem !important;
    color: #080b0c !important;
    text-align: center !important;
    font-weight: 500 !important;
    white-space: normal !important;
}
.industry-solutions__item-name:hover {
    color: #3FBEDF !important;
}

@media screen and (max-width: 1200px) {
    .industry-solutions__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 22px !important;
    }

    .industry-solutions__title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 992px) {
    .industry-solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 28px !important;
    }

    .industry-solutions__title {
        font-size: 1.5rem;
    }

    .industry-solutions__header {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .industry-solutions {
        padding: 60px 0;
    }

    .industry-solutions__header {
        margin-bottom: 35px;
    }

    .industry-solutions__title {
        font-size: 1.3rem;
    }

    .industry-solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }

    .industry-solutions__item-name {
        font-size: 0.85rem !important;
    }

    .industry-solutions__item {
        gap: 14px !important;
    }
}

@media screen and (max-width: 480px) {
    .industry-solutions {
        padding: 40px 0;
    }

    .industry-solutions__header {
        margin-bottom: 30px;
    }

    .industry-solutions__title {
        font-size: 1.1rem;
    }

    .industry-solutions__grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .industry-solutions__item-name {
        font-size: 0.85rem !important;
    }

    .industry-solutions__item {
        gap: 12px !important;
    }
}